home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_438 / menuc / s / mcasm < prev    next >
AmigaDOS Script File  |  1992-05-06  |  402b  |  20 lines

  1. .key infile/a,test/s
  2. if exists "<infile>.men"
  3.     MenuC <infile>.men <infile>.a ASM <test>
  4. else 
  5.     echo "MCAsm: File <infile>.men was not found*N"
  6.     quit 20
  7. endif
  8.  
  9. ; modify here for your specific assembler
  10. ; below for A68k
  11.  
  12. A68k -iinclude: <infile>.a 
  13. ;; A68k -iinclude: -q <infile>.a  ;for quiet operation
  14.  
  15. if "<test>" not eq ""
  16.     Blink <infile>.o lib lib:small.lib
  17.     <infile>        ; run the test program
  18. endif
  19.  
  20.